type encoding/binary.decoder
13 uses
encoding/binary (current package)
binary.go#L326: d := &decoder{order: order, buf: make([]byte, size)}
binary.go#L536: type decoder coder
binary.go#L539: func (d *decoder) bool() bool {
binary.go#L554: func (d *decoder) uint8() uint8 {
binary.go#L565: func (d *decoder) uint16() uint16 {
binary.go#L576: func (d *decoder) uint32() uint32 {
binary.go#L587: func (d *decoder) uint64() uint64 {
binary.go#L598: func (d *decoder) int8() int8 { return int8(d.uint8()) }
binary.go#L602: func (d *decoder) int16() int16 { return int16(d.uint16()) }
binary.go#L606: func (d *decoder) int32() int32 { return int32(d.uint32()) }
binary.go#L610: func (d *decoder) int64() int64 { return int64(d.uint64()) }
binary.go#L614: func (d *decoder) value(v reflect.Value) {
binary.go#L758: func (d *decoder) skip(v reflect.Value) {
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |